예제 #1
0
        public static void Read(this IDictionary <string, ulong> _this, EndianStream stream)
        {
            int count = stream.ReadInt32();

            for (int i = 0; i < count; i++)
            {
                string key   = stream.ReadStringAligned();
                ulong  value = stream.ReadUInt64();
                _this.Add(key, value);
            }
        }