Example #1
0
 public void SetDateEx(DateEx value)
 {
     m_text = value.ToString(m_settings.DateFormat, CultureInfo.InvariantCulture);
 }
Example #2
0
 public void SetDateEx(DateEx value)
 {
     _values[_curWriteField] = value;
     Changed();
 }
Example #3
0
 public void SetDateEx(DateEx value)
 {
     m_stream.Write((byte)TypeStorage.DateEx);
     value.WriteTo(m_stream);
 }
Example #4
0
 public virtual void SetDateEx(DateEx value)
 {
     m_text = "'" + value.ToStringNormalized() + "'";
 }
Example #5
0
 public void SetDateEx(DateEx value)
 {
     m_dateTimeExVal.DatePart = value;
     _type = TypeStorage.DateEx;
 }
Example #6
0
 public static DateEx FromStream(BinaryReader stream)
 {
     DateEx res = new DateEx();
     res.m_flags = (DateExFlags)stream.ReadByte();
     if (!res.SkipDate)
     {
         res.m_year = stream.ReadInt16();
         res.m_month = stream.ReadByte();
         res.m_day = stream.ReadByte();
     }
     return res;
 }