예제 #1
0
 public uint ReadBits <T>(string name, int bits, params object[] idx) where T : IId
 {
     return(ReadEntry(StoreName.ToEnum <T>(), name, bits, idx));
 }
예제 #2
0
 public Int32 ReadInt32 <T>(string name, params object[] idx) where T : IId
 {
     return(ReadEntry <Int32>(StoreName.ToEnum <T>(), name, idx));
 }
예제 #3
0
 public UInt64 ReadUInt64 <T>(string name, params object[] idx) where T : IId
 {
     return(ReadEntry <UInt64>(StoreName.ToEnum <T>(), name, idx));
 }
예제 #4
0
 public Byte ReadByte <T>(string name, params object[] idx) where T : IId
 {
     return(ReadEntry <Byte>(StoreName.ToEnum <T>(), name, idx));
 }