示例#1
0
		public Description (string predicate, string title, string description, ValueFormat formater)
		{
			this.predicate = predicate;
			this.title = title;
			this.formater = formater;
		}
示例#2
0
 public Description(string predicate, string title, string description, ValueFormat formater)
 {
     this.predicate = predicate;
     this.title     = title;
     this.formater  = formater;
 }
示例#3
0
		public Description (string predicate, string title, System.Type type) : this (predicate, title)
		{
			formater = new ValueFormat (type);
		}
示例#4
0
 public Description(string predicate, string title, System.Type type) : this(predicate, title)
 {
     formater = new ValueFormat(type);
 }