代码搜索:expression

找到约 10,000 项符合「expression」的源代码

代码结果 10,000
www.eeworm.com/read/124637/6042536

cs indexerexpression.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class IndexerExpression : Expression { Expression targetObject; ArrayList indices; //
www.eeworm.com/read/124637/6042538

cs binaryoperatorexpression.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class BinaryOperatorExpression : Expression { Expression left; BinaryOperatorType op;
www.eeworm.com/read/124637/6042548

cs invocationexpression.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class InvocationExpression : Expression { Expression targetObject; ArrayList parame
www.eeworm.com/read/124637/6042549

cs assignmentexpression.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class AssignmentExpression : Expression { Expression left; AssignmentOperatorType op;
www.eeworm.com/read/124637/6042558

cs conditionalexpression.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class ConditionalExpression : Expression { Expression testCondition; Expression trueEx
www.eeworm.com/read/124637/6042590

cs ifstatement.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class IfStatement : Statement { Expression condition; Statement embeddedStatement;
www.eeworm.com/read/124637/6042593

cs forstatement.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class ForStatement : Statement { ArrayList initializers; // EmbeddedStatement OR list of
www.eeworm.com/read/124637/6042602

cs ifelsestatement.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class IfElseStatement : Statement { Expression condition; Statement embeddedStatement;
www.eeworm.com/read/124637/6042608

cs switchstatement.cs

using System; using System.Collections; namespace ICSharpCode.SharpRefactory.Parser.AST { public class SwitchStatement : BlockStatement { Expression switchExpression; ArrayList switch
www.eeworm.com/read/124637/6042836

cs binaryoperatorexpression.cs

using System; using System.Collections; using ICSharpCode.SharpRefactory.Parser.VB; namespace ICSharpCode.SharpRefactory.Parser.AST.VB { public class BinaryOperatorExpression : Expression