Example #1
0
 public VdfValue(VdfObject obj)
 {
     _type   = VdfValueType.Object;
     _object = obj;
 }
Example #2
0
 public VdfValue(string text)
 {
     _type = VdfValueType.Text;
     _text = text;
 }
Example #3
0
 public VdfValue()
 {
     _type = VdfValueType.Null;
 }