Ejemplo n.º 1
0
 public ReferenceTypeInfo(TypeInfo innerType)
     : base("&" + innerType.Name, TypeKind.Reference)
 {
     InnerType = innerType;
 }
Ejemplo n.º 2
0
 public ReferenceTypeInfo(string name, TypeKind kind, BinaryReader reader)
     : base(name, kind, reader)
 {
     InnerType = TypeInfo.Deserialize(reader);
 }