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

Map() public method

public Map ( Type type ) : IType
type System.Type
return IType
        public IType Map(Type type)
        {
            return TypeSystemProvider().Map(type);
        }

Same methods

TypeSystemServices::Map ( ConstructorInfo constructor ) : IConstructor
TypeSystemServices::Map ( MemberInfo members ) : IEntity
TypeSystemServices::Map ( MethodInfo method ) : IMethod
TypeSystemServices::Map ( ParameterInfo parameters ) : IParameter[]

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