Cakewalk.Shared.Packets.PacketMap.GetTypeForPacketCode C# (CSharp) Метод

GetTypeForPacketCode() публичный статический Метод

Get the type for a given packet code.
public static GetTypeForPacketCode ( PacketCode c ) : Type
c PacketCode
Результат System.Type
        public static Type GetTypeForPacketCode(PacketCode c)
        {
            Type t = null;

            s_typeMap.TryGetValue(c, out t);

            return t;
        }