FyreVM.Quetzal.this C# (CSharp) Method

this() public method

Gets or sets typed data chunks.
public this ( string type ) : byte[]
type string The 4-character type identifier.
return byte[]
        public byte[] this[string type]
        {
            get
            {
                byte[] result = null;
                chunks.TryGetValue(StrToID(type), out result);
                return result;
            }
            set
            {
                chunks[StrToID(type)] = value;
            }
        }