Example #1
0
File: time.cs Project: kashano/main
 public FormatInfo(FormatInfoType type, string text) {
     Type = type;
     Text = text;
 }
Example #2
0
 public FormatInfo(FormatInfoType type, string text)
 {
     Type = type;
     Text = text;
 }
Example #3
0
 public FormatInfo(string text)
 {
     Type = FormatInfoType.SimpleFormat;
     Text = text;
 }