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