Asgard.Core.System.ObjectMapper.LookupType C# (CSharp) Method

LookupType() static private method

static private LookupType ( ushort id ) : Type
id ushort
return System.Type
        internal static Type LookupType(ushort id)
        {
            Type type;
            _typeLookup.TryGetValue(id, out type);
            return type;
        }

Same methods

ObjectMapper::LookupType ( Type type ) : ushort