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

Map() public method

public Map ( ConstructorInfo constructor ) : IConstructor
constructor System.Reflection.ConstructorInfo
return IConstructor
        public IConstructor Map(ConstructorInfo constructor)
        {
            return (IConstructor) Map((MemberInfo) constructor);
        }

Same methods

TypeSystemServices::Map ( MemberInfo members ) : IEntity
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