Microsoft.JScript.ParameterDeclaration.ParameterDeclaration C# (CSharp) Method

ParameterDeclaration() private method

private ParameterDeclaration ( Type type, String identifier ) : System
type System.Type
identifier String
return System
      internal ParameterDeclaration(Type type, String identifier)
        : base(){
        this.identifier = identifier;
        this.type = new TypeExpression(new ConstantWrapper(type, null));
        this.customAttributes = null;
      }
    

Same methods

ParameterDeclaration::ParameterDeclaration ( Context context, String identifier, TypeExpression type, CustomAttributeList customAttributes ) : System