Mono.Cecil.TypeReferenceProjection.TypeReferenceProjection C# (CSharp) Method

TypeReferenceProjection() public method

public TypeReferenceProjection ( TypeReference type, TypeReferenceTreatment treatment ) : System
type TypeReference
treatment TypeReferenceTreatment
return System
        public TypeReferenceProjection(TypeReference type, TypeReferenceTreatment treatment)
        {
            Name = type.Name;
            Namespace = type.Namespace;
            Scope = type.Scope;
            Treatment = treatment;
        }
TypeReferenceProjection