You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace ConsoleStarter;
|
|
|
|
|
|
|
|
|
|
public class TestPerson
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int? Idn { get; set; }
|
|
|
|
|
public uint uit { get; set; }
|
|
|
|
|
|
|
|
|
|
public byte b { get; set; }
|
|
|
|
|
public sbyte sb { get; set; }
|
|
|
|
|
public byte[] bs { get; set; }
|
|
|
|
|
|
|
|
|
|
public string s { get; set; }
|
|
|
|
|
public string[] ss { get; set; }
|
|
|
|
|
|
|
|
|
|
public short st { get; set; }
|
|
|
|
|
public ushort ust { get; set; }
|
|
|
|
|
|
|
|
|
|
public Int16 I16 { get; set; }
|
|
|
|
|
public UInt16 UI16 { get; set; }
|
|
|
|
|
|
|
|
|
|
public Int32 I32 { get; set; }
|
|
|
|
|
public UInt32 UI32 { get; set; }
|
|
|
|
|
|
|
|
|
|
public Int64 I64 { get; set; }
|
|
|
|
|
public UInt64 UI64 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public long lg { get; set; }
|
|
|
|
|
public ulong ulg { get; set; }
|
|
|
|
|
|
|
|
|
|
public float ft { get; set; }
|
|
|
|
|
public double de { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool bl { get; set; }
|
|
|
|
|
public bool[] bls { get; set; }
|
|
|
|
|
}
|