我可以有一個擁有資源成員的類,或者至少它實現了IDisposable。這裏是一個例子(只是用於示出我的意思): public class Something
{
private HMACSHA1 HmacSha1;
public Something()
{
HmacSha1 = new HMACSHA1();
}
public b
考慮我們正在使用一些非託管資源。 最常見的方法是: //With IDisposable
using (MemoryStream memoryStream = new MemoryStream())
{
//Operate with memory stream
}
但是我們不能寫以下? //With destructor called at the end of a block