Beispiel #1
0
 public PfArray(PfType array_type, object[] entries)
 {
     ArrayType = array_type;
     Entries   = entries;
 }
Beispiel #2
0
 public PfCollection(PfType collection_type, object[][] elements)
 {
     CollectionType = collection_type;
     Elements       = elements;
 }
Beispiel #3
0
 public PfObject(PfType type, Dictionary <string, object> data)
 {
     Type = type;
     Data = data;
 }