Example #1
0
        public EventInfo GetEvent(int id)
        {
            EventInfo info;

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

            _Interfaces.TryGetItem2(type_id, out type);
            return(type);
        }
Example #3
0
        public MethodInfo GetMethod(int id)
        {
            MethodInfo method;

            _Methods.TryGetItem2(id, out method);
            return(method);
        }
Example #4
0
        public PropertyInfo GetProperty(int id)
        {
            PropertyInfo info;

            _Propertys.TryGetItem2(id, out info);
            return(info);
        }
Example #5
0
 public PropertyInfo GetProperty(int id)
 {
     _Properties.TryGetItem2(id, out PropertyInfo info);
     return(info);
 }