我試圖加密用戶密碼獲取對象的實例未設置爲一個對象錯誤
CryptoWrapper wrapObj = null;
UserDetails userDetails = dbContext.GetUserDetails();
if (userDetails != null)
{
if (userDetails.Password !=null && userDetails.Password != "")
{
//some code here
wrapObj.Crypt(userDetails.Password);
}
}
我得到的實例「對象實例不設置到對象的實例。」
有人可以幫我嗎?
幾乎所有'NullReferenceException'的情況都是一樣的。請參閱「[什麼是.NET一個NullReferenceException?](http://stackoverflow.com/questions/4660142/what-is-a-nullreferenceexception-in-net)」獲得一些提示。 –
_where_你得到那個異常?哪條線? –
那麼,你試圖引用wrapObj,它是null。 – OldProgrammer