コード例 #1
0
 public T[] GetArray <T>(int index = 0)
 {
     return((T[])BinarySerializer.GetPrimitive(_bytes, typeof(T[]), ref index));
 }
コード例 #2
0
 public string GetString(int index = 0)
 {
     return((string)BinarySerializer.GetPrimitive(_bytes, typeof(string), ref index));
 }