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