public static TssSdtShort NewTssSdtShort() { return(new TssSdtShort { m_slot = TssSdtShortSlot.NewSlot(null) }); }
private void SetValue(short v) { if (this.m_slot == null) { this.m_slot = TssSdtShortSlot.NewSlot(null); } this.m_slot.SetValue(v); }
private short GetValue() { if (this.m_slot == null) { this.m_slot = TssSdtShortSlot.NewSlot(null); } return(this.m_slot.GetValue()); }