Boo.Lang.Compiler.TypeSystem.TypeSystemServices.Map C# (CSharp) Method

Map() public method

public Map ( MemberInfo members ) : IEntity
members System.Reflection.MemberInfo
return IEntity
        public IEntity Map(MemberInfo[] members)
        {
            return TypeSystemProvider().Map(members);
        }

Same methods

TypeSystemServices::Map ( ConstructorInfo constructor ) : IConstructor
TypeSystemServices::Map ( MethodInfo method ) : IMethod
TypeSystemServices::Map ( ParameterInfo parameters ) : IParameter[]
TypeSystemServices::Map ( Type type ) : IType

Usage Example

Example #1
0
 public ExternalGenericParameter(TypeSystemServices tss, Type type) : base(tss, type)
 {
     if (type.DeclaringMethod != null)
     {
         _declaringMethod = (IMethod)tss.Map(type.DeclaringMethod);
     }
 }
All Usage Examples Of Boo.Lang.Compiler.TypeSystem.TypeSystemServices::Map
TypeSystemServices