예제 #1
0
 public static TssSdtLong NewTssSdtLong()
 {
     return(new TssSdtLong
     {
         m_slot = TssSdtLongSlot.NewSlot(null)
     });
 }
예제 #2
0
 private void SetValue(long v)
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtLongSlot.NewSlot(null);
     }
     this.m_slot.SetValue(v);
 }
예제 #3
0
 private long GetValue()
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtLongSlot.NewSlot(null);
     }
     return(this.m_slot.GetValue());
 }