本文介绍了如果IDisposposable,请正确使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否需要在下面的代码块中使用IDisposable.我正在使用,并且散列包含从用户获取的文本的SHA1,而inputData是字节数组.我认为第二段代码是正确的.
示例1:
Is there any need to use IDisposable in the block of code below. I am availing of using and hash contains the SHA1 of text taken in from the user and inputData is a byte array. I assume the second block of code is correct.
Example 1:
using (SHA1 hash = SHA1.Create())
{
txtSHA1.Text = GetBytesToString(hash.ComputeHash(inputData));
((IDisposable)hash).Dispose();
}
示例2:
Example 2:
using (SHA1 hash = SHA1.Create())
{
txtSHA1.Text = GetBytesToString(hash.ComputeHash(inputData));
}
推荐答案
这篇关于如果IDisposposable,请正确使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!