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