本文整理汇总了C#中NRefactoryASTGenerator.Ast.TypeReference类的典型用法代码示例。如果您正苦于以下问题:C# TypeReference类的具体用法?C# TypeReference怎么用?C# TypeReference使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TypeReference类属于NRefactoryASTGenerator.Ast命名空间,在下文中一共展示了TypeReference类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EventDeclaration
// for VB:
public EventDeclaration(TypeReference typeReference, Modifiers modifier, List<ParameterDeclarationExpression> parameters, List<AttributeSection> attributes, string name, List<InterfaceImplementation> interfaceImplementations)
: base(modifier, attributes, name, parameters)
{ }
示例2: ForeachStatement
public ForeachStatement(TypeReference typeReference, string variableName, Expression expression, Statement embeddedStatement, Expression nextExpression) {}
示例3: CastExpression
public CastExpression(TypeReference castTo)
{
}
示例4: DeclareDeclaration
public DeclareDeclaration(string name, Modifiers modifier, TypeReference typeReference, List<ParameterDeclarationExpression> parameters, List<AttributeSection> attributes, string library, string alias, CharsetModifier charset)
: base(modifier, attributes, name, parameters)
{}
示例5: CatchClause
public CatchClause(TypeReference typeReference, string variableName, Statement statementBlock) {}
示例6: OperatorDeclaration
public OperatorDeclaration(Modifiers modifier,
List<AttributeSection> attributes,
List<ParameterDeclarationExpression> parameters,
TypeReference typeReference,
ConversionType conversionType)
: base(null, modifier, typeReference, parameters, attributes)
{}
示例7: VariableDeclaration
public VariableDeclaration(string name, Expression initializer, TypeReference typeReference) {}
示例8: SizeOfExpression
public SizeOfExpression(TypeReference typeReference)
{
}
示例9: StackAllocExpression
public StackAllocExpression(TypeReference typeReference, Expression expression)
{
}
示例10: ParameterDeclarationExpression
public ParameterDeclarationExpression(TypeReference typeReference, string parameterName)
{
}
示例11: ObjectCreateExpression
public ObjectCreateExpression(TypeReference createType, List<Expression> parameters)
{
}
示例12: DefaultValueExpression
public DefaultValueExpression(TypeReference typeReference)
{
}
示例13: FieldDeclaration
// for all other cases
public FieldDeclaration(List<AttributeSection> attributes, TypeReference typeReference, Modifiers modifier)
: base(modifier, attributes)
{}
示例14: TypeOfIsExpression
public TypeOfIsExpression(Expression expression, TypeReference typeReference)
{
}
示例15: MethodDeclaration
public MethodDeclaration(string name, Modifiers modifier, TypeReference typeReference, List<ParameterDeclarationExpression> parameters, List<AttributeSection> attributes) : base(modifier, attributes, name, parameters) {}