Beispiel #1
0
        public int GetEvent(EventInfo info)
        {

            int id;
            _Events.TryGetItem1(info, out id);
            return id;
        }
Beispiel #2
0
        public int GetInterface(Type type)
        {
            int id;

            _Interfaces.TryGetItem1(type, out id);
            return(id);
        }
Beispiel #3
0
        public int GetMethod(MethodInfo method_info)
        {
            int id;

            _Methods.TryGetItem1(method_info, out id);
            return(id);
        }
Beispiel #4
0
        public int GetProperty(PropertyInfo info)
        {
            int id;

            _Propertys.TryGetItem1(info, out id);
            return(id);
        }
Beispiel #5
0
 public int GetEvent(EventInfo info)
 {
     _Events.TryGetItem1(info, out int id);
     return(id);
 }