public static bool readType(bin.IReader r, out string v, uint maxlen) { v = ""; uint len; if (!readDynSize(r, out len)) { return(false); } if (len > maxlen) { return(false); } if (len == 0) { return(true); } byte[] data; int startId; if (!r.read(len, out data, out startId)) { return(false); } v = Encoding.UTF8.GetString(data, startId, (int)len); return(true); }
public static bool readType(bin.IReader r, out short v) { v = 0; byte[] data; int startId; if (!r.read(2, out data, out startId)) { return(false); } v = BitConverter.ToInt16(data, startId); return(true); }
public static bool readType(bin.IReader r, out byte[] v, uint len) { v = new byte[len]; byte[] data; int startId; if (!r.read(len, out data, out startId)) { return(false); } Array.Copy(data, startId, v, 0, len); return(true); }
public static bool readType(bin.IReader r, out float v) { v = 0.0f; byte[] data; int startId; if (!r.read(4, out data, out startId)) { return(false); } v = BitConverter.ToSingle(data, startId); return(true); }
public static bool readType(bin.IReader r, out double v) { v = 0.0; byte[] data; int startId; if (!r.read(8, out data, out startId)) { return(false); } v = BitConverter.ToDouble(data, startId); return(true); }
public static bool readType(bin.IReader r, out bool v) { v = false; byte[] data; int startId; if (!r.read(1, out data, out startId)) { return(false); } v = (data[startId] == 0)?false:true; return(true); }
public static bool readType(bin.IReader r, out byte v) { v = 0; byte[] data; int startId; if (!r.read(1, out data, out startId)) { return(false); } v = data[startId]; return(true); }