Exemplo n.º 1
0
 public void Dispose()
 {
     if (_ownRecord)
     {
         _instance = null;
     }
 }
Exemplo n.º 2
0
 public void Dispose()
 {
     if (_ownRecord)
     {
         s_instance = null;
     }
 }
Exemplo n.º 3
0
 public NtfsTransaction()
 {
     if (_instance == null)
     {
         _instance  = this;
         Timestamp  = DateTime.UtcNow;
         _ownRecord = true;
     }
 }
Exemplo n.º 4
0
 public NtfsTransaction()
 {
     if (s_instance == null)
     {
         s_instance = this;
         _timestamp = DateTime.UtcNow;
         _ownRecord = true;
     }
 }