コード例 #1
0
ファイル: sha1managed.cs プロジェクト: 85351/dotnet_framework
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                if (_impl != null)
                {
                    _impl.Dispose();
                    // Don't null this out, or we exit "shimming mode".
                }
            }

            base.Dispose(disposing);
        }