示例#1
0
 public FloatTypeInfo(string name, TypeKind kind, BinaryReader reader)
     : base(name, kind, reader)
 {
     Width = (FloatWidth)reader.ReadInt32();
 }
示例#2
0
 public FloatTypeInfo(string name, FloatWidth width)
     : base(name, TypeKind.Float)
 {
     Width = width;
 }